home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / After Effects 3.1 SDK Mac / Examples / I⁄O Samples / Filmstrip FXIF / FILM_Estimate.c < prev    next >
Text File  |  1996-06-04  |  875b  |  61 lines

  1. /**
  2.     FILM_Estimate.c
  3.     
  4.     Part of the Adobe After Effects 3.1 SDK    
  5.     Copyright (c)1993-96, Adobe Systems Inc, All Rights Reserved.
  6.  
  7.     Revision History
  8.         1.0, created by dmw
  9. **/
  10.  
  11. #include "PITypes.h"
  12. #include "PIGeneral.h"
  13. #include "PIFormat.h"
  14. #include "PIFormatT.h"
  15. #include "Film.h"
  16.  
  17.  
  18. void EstimatePrepare (Ptr Stuff, long *data, short *result)
  19. {
  20.     FormatRecordPtr    fp = (FormatRecordPtr)Stuff;
  21.  
  22.     *result = 0;
  23.     
  24. }
  25.  
  26.  
  27. void EstimateStart (Ptr Stuff, long *data, short *result)
  28. {
  29.     OSErr            err = 0;
  30.     FormatRecordPtr    fp = (FormatRecordPtr)Stuff;
  31.  
  32.  
  33.     if (!err) {
  34.         *result = 0;
  35.     } else {
  36.         *result = err;
  37.     }
  38. }
  39.  
  40.  
  41. void EstimateContinue (Ptr Stuff, long *data, short *result)
  42. {
  43.     OSErr            err = 0;
  44.  
  45.     if (!err) {
  46.         *result = 0;
  47.     } else {
  48.         *result = err;
  49.     }
  50.     
  51.                 
  52. }
  53.  
  54.  
  55. void EstimateFinish (Ptr Stuff, long *data, short *result)
  56. {
  57.     FormatRecordPtr    fp = (FormatRecordPtr)Stuff;
  58.  
  59.     *result = 0;
  60. }
  61.